home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / Thread Manager / Thread Manager 2.1.1d1+ / ThreadedSort / Sort / BuildConditionals.h next >
Encoding:
C/C++ Source or Header  |  1995-04-28  |  1.0 KB  |  54 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        BuildConditionals.h
  3.  
  4.     Contains:    Defines used to control what capabilities are built
  5.  
  6.     Written by: Dave Falkenburg
  7.  
  8.     Copyright:    © 1994 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <3>      9/9/94    DRF        Conditionalize AOCE support. Assume just a base system for now.
  13.          <2>      9/1/94    DRF        We only run under System 7.0 or later. NOTE: This typically
  14.                                     requires rebuilding precompiled headers.
  15.  */
  16.  
  17. #ifndef    _BUILDCONDITIONALS_
  18. #define    _BUILDCONDITIONALS_
  19.  
  20. #define    SystemSevenOrLater    1
  21.  
  22. #ifndef    USEOLDUNIVERSALHEADERS
  23. #define    USEOLDUNIVERSALHEADERS        1
  24. #endif
  25.  
  26. #ifndef    qDebug
  27. #define    qDebug                        0
  28. #endif
  29.  
  30. #ifndef    qAOCEAware
  31. #define    qAOCEAware                    0
  32. #endif
  33.  
  34. #ifndef    qUseQuickDrawGX
  35. #define    qUseQuickDrawGX                0
  36. #define    qRequireDrawGX                0
  37. #define    qUseQuickDrawGXDebugging    0
  38. #endif
  39.  
  40. #ifndef    qRequireThreadManager
  41. #define    qRequireThreadManager    1
  42. #endif
  43.  
  44. #ifndef    qInlineInputAware
  45. #define    qInlineInputAware    0
  46. #endif
  47.  
  48. #if    qUseQuickDrawGX
  49. //    Tell QuickDrawGX that we use universal headers
  50. #define    ppcinterfaces        1
  51. #endif
  52.  
  53. #endif
  54.